home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / nethack.lha / nethack-3.1 / include / micro.h < prev    next >
C/C++ Source or Header  |  1993-01-17  |  421b  |  18 lines

  1. /*    SCCS Id: @(#)micro.h    3.1    90/22/02    */
  2. /* micro.h - function declarations for various microcomputers */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef MICRO_H
  6. #define MICRO_H
  7.  
  8. extern const char *alllevels, *allbones;
  9. extern char levels[], bones[], permbones[], hackdir[];
  10.  
  11. extern int ramdisk;
  12.  
  13. #define C(c)    (0x1f & (c))
  14. #define M(c)    (0x80 | (c))
  15. #define ABORT C('a')
  16.  
  17. #endif /* MICRO_H */
  18.